function showTransfer()
{
  $query = "SELECT id, nazwa FROM Users WHERE id != {$_SESSION['zalogowany']['Id']}";

  if(!($result = $this->dbo->query($query)) || !($users  = $result->fetchAll())){
    $users = array();
  }
  
  $message = $this->getMessage();
  $stan_konta = $this->getAccountBalance($_SESSION['zalogowany']['Id']);
  $user = $_SESSION['zalogowany']['Nazwa'];
  
  include 'tmpl/transfer.tpl.php';
}